home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Doc / Graphex / graphex.dpr < prev    next >
Encoding:
Text File  |  2001-05-22  |  285 b   |  16 lines

  1. program GraphEx;
  2.  
  3. uses
  4.   Forms,
  5.   GraphWin in 'GraphWin.pas' {Form1},
  6.   BMPDlg in 'BMPDlg.pas' {NewBMPForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TNewBMPForm, NewBMPForm);
  14.   Application.Run;
  15. end.
  16.